(ido-set-common-completion): Use `let', not `let*'.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 31 Jan 2007 15:29:22 +0000 (15:29 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 31 Jan 2007 15:29:22 +0000 (15:29 +0000)
lisp/ido.el

index 10418d209aa41d0b6f48d9cd1e96cea337b7638f..5246057471895b4e87536d7480895ceba2dbc8e2 100644 (file)
@@ -2403,8 +2403,8 @@ If cursor is not at the end of the user input, move to end of input."
 (defun ido-set-common-completion  ()
   ;; Find common completion of `ido-text' in `ido-matches'
   ;; The result is stored in `ido-common-match-string'
-  (let* (val)
-    (setq  ido-common-match-string nil)
+  (let (val)
+    (setq ido-common-match-string nil)
     (if (and ido-matches
             (not ido-enable-regexp) ;; testing
              (stringp ido-text)